home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / network / midi / mx2net20.lzh / MX2NET20 / MX2NET.TXT < prev    next >
Text File  |  1990-12-15  |  5KB  |  101 lines

  1.  
  2.         The network uses the MIDI port to allow disk sharing between
  3.         two ST's that are both running MX2NET. The remote
  4.         drives can be used just like your local drives but they will of
  5.         course be slower because of the transfer of the data through the
  6.         MIDI ports.
  7.  
  8.         The remote drives are defined in the MX2NET.INF file. This is a
  9.         ascii file with the drive parameters all on one line. For example
  10.         if you have    cfr,dgr,eow     in your file.
  11.                        |||       |
  12.                       / | \       \
  13.                      /  |  \       \
  14.                remote local read    write
  15.                drive  drive access  access
  16.  
  17.         You will be able to access remote drive C as your local drive F
  18.         read-only. Remote drive D will be G and remote drive E will be O
  19.         with write access. If you wish to change the drives simply edit
  20.         the MX2NET.INF file, reboot your ST and rerun the MX2NET.PRG.
  21.         A max of 14 drives can be defined with P being the highest. If
  22.         there is no MX2NET.INF file no drives will be defined locally but
  23.         a remote machine still can access your drives.
  24.  
  25.         The MX2NET.OPT file defines program options. It is an ascii file
  26.         with all option characters in lower case. Current options are:
  27.  
  28.         t       :       Get GEMDOS date and time from remote ST.
  29.                         Normally your "HOST" ST would not have this option
  30.                         set.
  31.  
  32.         o       :       Mask over existing drives. If this option is set
  33.                         it is possible to overlay a networked drive ID
  34.                         over a real drive on the local ST by assigning
  35.                         it's ID in the MX2NET.INF file. If this option
  36.                         is not set a cold-boot is needed before restarting
  37.                         MX2NET.
  38.  
  39.         m       :       Allow memory transfers to and from remote ST.
  40.                         Enables shared memory and remote operation.
  41.  
  42.         5       :       Remote ST is 520ST. Screen physical memory is
  43.                         found at 78000 HEX.
  44.  
  45.  
  46.         Be sure to cross connect the midi cables ie... the MIDI out to
  47.         the MIDI in on the other ST and vice verse.
  48.  
  49.                             midi in ___  ___ midi in
  50.                   ST 1                 \/                 ST 2
  51.                   HOST     midi out ___/\___ midi out    REMOTE
  52.  
  53.  
  54.         The MX2NET.PRG is a standalone network driver that runs from
  55.         the DESKTOP or another GEM program. It should NOT be installed
  56.         in an AUTO folder. If ST 1 is the HOST it should be started
  57.         first then start the program on ST 2.
  58.  
  59.  
  60.         Drive 31 is a special ID that MX2NET uses for network function
  61.         calls. Use the rwabs bios call to access these functions.
  62.  
  63.         A call to this ID to read sector 0 will return the local network
  64.         status into the buffer.
  65.         Sector 1 will return the remote network status.
  66.  
  67.         A write to sector 2 will send the buffer into the keyboard buffer
  68.         in the remote ST. Location 0 in the buffer contains the count
  69.         while location 1 is the start of the string. The buffer is an array
  70.         0..63 of longs.
  71.  
  72.         A read to sector 3 will return in the buffer an array of checksums
  73.         of the remote physical screen memory.
  74.         Any read or write of a sector more that 3 will read that 512 byte
  75.         section(s) of memory to or from the rwabs buffer.
  76.  
  77.  
  78.         NOTE:
  79.  
  80.         mx2neta.prg                     :       RS-232 port version.
  81.         netstat.prg                     :       read local network stat's.
  82.         netstatr.prg                    :       read remote network stat's.
  83.         netview.prg                     :       View remote ST's screen
  84.                                                 memory. Use the Undo key
  85.                                                 to exit.
  86.   status record structure
  87.  
  88.   stat        = RECORD
  89.                  inpackets      :       LONGCARD;
  90.                  outpackets     :       LONGCARD;
  91.                  retrys         :       LONGCARD;
  92.                  checksumerrors :       LONGCARD;
  93.                  timeouts       :       LONGCARD;
  94.                  rwabsreqs      :       LONGCARD;
  95.                  resets         :       LONGCARD;
  96.                 END;
  97.  
  98.   PS    It is recommended that this program be used for read-only access
  99.         to your remote drives. It is possible to scramble the FAT if
  100.         both machines try to write to the disk at the same time.
  101.